Skip to main content
Version: 1.0.2

Update Subscription

The Update Subscription API allows to enable or disable the required subscription.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

id

Mandatory

String

Subscription Id

Example - "SUB443001"

status

Mandatory

String

Status of the subscription to be updated

Example - "DISABLED"


curl --location '' \
--header 'Content-Type: application/json' \
--data '{"id":"SUB443001","status":"DISABLED"}'

Body


{
"id": "SUB443001",
"status": "DISABLED"
}

Response: 200

Payload Parameters
ParameterDescription

response

String

Response Message

Example - "Subscription Updated successfully"


{
"response": "Subscription Updated successfully"
}